home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 October / Macworld (1998-10).dmg / Serious Demos / Morpha / 3DO.DXR / 00033_group 1.ls < prev    next >
Encoding:
Text File  |  1998-07-31  |  553 b   |  28 lines

  1. property mys, mystore, spare
  2. global grouper
  3.  
  4. on beginSprite me
  5.   set mys to the spriteNum of me
  6. end
  7.  
  8. on mouseDown me
  9.   set spare to "group 1"
  10.   set grouper to 1
  11.   set mystore to 100
  12.   set the blend of sprite 36 to 40
  13.   set the blend of sprite 37 to 40
  14.   sendAllSprites(#blender)
  15. end
  16.  
  17. on mouseEnter me
  18.   set spare to the text of field "group"
  19.   set mystore to the blend of sprite mys
  20.   set the blend of sprite mys to 100
  21.   put "group 1" into field "group"
  22. end
  23.  
  24. on mouseLeave me
  25.   put spare into field "group"
  26.   set the blend of sprite mys to mystore
  27. end
  28.